000607
000607
IBMWebSphereProcessServerV7.0,Integration
Development
Version4.1
http://certkill.com
000607
Topic1,VolumeA
QUESTIONNO:1
WhichofthefollowingareTRUEregardingServiceCo mponentArchitecture(SCA)?
A.StandardJavaclassesareusedtostoredata.
B.Integrationdeveloperscanconcentratemoretimeonthedetailsoftheserviceimplementation.
C.WithoutSC A,youmustchangeapplicationcodetorespondtoserviceimplementationchanges.
D.SCAprovidesasingleservicecomponentabstractionforservicesthatmayalreadybeimplementedas
businessprocesses.
E.Theservicecomponentdefinitionisincludedinafilecalled<SERVICE_NAME>.SCDLthatcanhavezero
ormoreinterfacesassociatedwithit.
Answer:C,D
QUESTIONNO:2
Refertotheexhibits.Exhibit1showsthedefinitionofCustomerbusinessobject.
Exhibit2containsfragmentsofJavacodethatcreatesaninstanceofCustomerbusinessobject.
http://certkill.com
000607
WhichofthefollowinglinesofcodeplacesavalueinthetelephonefieldintheArrayOfTelephonechild
businessobject?
A.DataObjecttele_array=customer.createDataObject("ArrayOfTelephone");A.DataObjecttele_array=
customer.createDataObject("ArrayOfTelephone");tele_array.setString("telephone","1111111");
B.DataObjecttele_array=bof.create("http://Test","ArrayOfTelephone");B.DataObjecttele_array=
bof.create("http://Test","ArrayOfTelephone");tele_array.setString("telephone","1111111");
C.DataObjecttele_array=customer.createDataObject("ArrayOfTelephone");C.DataObjecttele_array=
customer.createDataObject("ArrayOfTelephone");Sequenceseq=tele_array.getSequence();
seq.add("telephone","1111111");
D.DataObjecttele_arra y=customer.createDataObject("ArrayOfTelephone");D.DataObjecttele_array=
customer.createDataObject("ArrayOfTelephone");Sequenceseq=tele_array.getString("telephone");?
seq.add("telephone","1111111");
Answer:C
QUESTIONNO:3
Acompanyisredesigninganexistingbusinessprocess.Duringimplementation,theintegrationdeveloper
realizesthattheinterfaceofanimportedserviceisnowdifferentfromtheref erenceofthebusiness
process.WhichofthefollowingistheBESTsolutionforsupportingfuturereleases?
A.Implementabridgeusingajavacomponent.
B.ImplementanEJBthatconnectstobothinterfaces.
C.Useadatamaptoconnectbothinterfaces.
D.Useamediationflowtoconnectbothinterfaces.
Answer:D
http://certkill.com
000607
QUESTIONNO:4
RefertotheExhibit.
Assumingsome_adapterisavalidJCAadapter,whichofthefollowingisTRUEaboutthisconfiguration?
A.SinceSolutionA_Libraryisreferencedbythetwosolutions,ithastobeconfiguredasasharedlibrary.
B.TheconfigurationisincorrectbecauseSolutionA_Libraryisn'tincluded intheprojectreferencesof
SolutionB.
C.WhenexportingSolutionBforserverdeployment,anEARfilecontaining2JARs,1WARand1RARis
created.
D.WhenexportingSolutionBforcommandlineservicedeployment,aZIPfilecontaining2JARs,1WAR
and1RARiscreated
http://certkill.com
000607
Answer:C
QUESTIONNO:5
RefertotheExhibit.
AsshownintheExhibit,bothmodulesofSolutionAreferencethelibrary,whichisconfiguredtobe
deployedwiththemodule.
IfanintegrationdeveloperexportsSolutionAforcommandlineservicedeployment,theresultis:Ifan
integrationdeveloperexportsSolutionAforcommandlineservicedeployment,theresultis:
http://certkill.com
000607
A.onezipfilecontainingthefoldersforthelibraryandbothmodules.
B.twozipfiles,oneforeachmodule,containingthefoldersforthelibraryandthemodule.
C.oneenterprisearchivecontainingthearchivesforthelibrary,bothmodules,andawebapplication.
D.twoenterprisearchives,oneforeachmodule,containingthearchivesforthelibrary,themoduleand
awebapplication.
Answer:B
QUESTIONNO:6
RefertotheExhibit.
http://certkill.com
000607
Thisprocess shouldbedefinedasalongrunnin g process,becausetheimplementationcontains:
A.aSnippet.
B.aParallelflow.
C.aWaitactivity.
D.aRepeatUntilLoopactivity.
Answer:C
http://certkill.com
000607
QUESTIONNO:7
Refertotheexhibit.
Adeveloperusingtheinterfaceintheexhibitisfacingarequirementschange‐thestartoperationneeds
tobeaonewayoperationthatusestheexistinginputs.WhichofthefollowingistheBESTwa ytomake
thechange?
A.Addanewonewayoperationtotheinterfaceandignoretheexistingoperation.
B.Clickontheoperationnameandchoose"Alt+Shift+R"torefactortheoperation.
C.Rightclickontheoperationandchoose"ChangetoOneWayOperation"fromthecontextmenu.
D.Deletetheinterfaceandcreateanewinterfacewiththesamename,namespace,andoperationname
withaonewayoperation.
Answer:C
QUESTIONNO:8
Refertotheexhibit.
http://certkill.com
000607
GiventhataninstanceoftheParentbusinessobjectisparent,whichofthefollowingfragmentofcode
setstheGrandChild'snameattributetobe"JohnDoe"?
A.parent.setString("name","JohnDoe");
B.DataObjectgrandchild=parent.createDataObject("grandChild");
grandchild.setString("name","JohnDoe");
C.DataObjectchild=parent.createDataObject("child");
DataObjectgrandchild=child.createDataObject("grandChild");
grandchild.setString("name","JohnDoe");
D.DataObjectchild=parent.createDataObject("http://Test/Child");D.DataObjectchil d=
parent.createDataObject("http://Test/Child");
DataObjectgrandchild=child.createDataObject("http://Test/GrandChild");
grandchild.setString("name","JohnDoe");
Answer:C
http://certkill.com
000607
QUESTIONNO:9
Anintegrationdeveloperisplanningamodulardesigntosupporttheimplementationofalarge
application.WhichofthefollowingBESTdescribestheapproachthatshouldbetakenbytheintegration
developerwhiledesigningthesolutioninordertoachievemodulereuseandapplicationmaintainability
overtime?
A.Useseparatemodulestoexposethelogicalunitsoffunctionasseparateservicesanduseasingle
librarytoholdthecommonlyuseddatatypes,interfaces,andtransformationartifacts.
B.Createmultiplemodulesandlibrariestoexposethefunctionsthatcomposetheapplicationas
separateservices.Theservicesshouldbeselectedbasedontherelativemodulesizesandcomplexityof
thefunctionsprovided.
C.Identifytheportionsofthecodethataremostlikelytobereusedanddeployeachasaseparate
logicalunitintomultiplelibrariesasindependentservices.Useasinglemoduletoinvoketheservices
deployedinthelibraries.
D.Determinewhichcomponentsshouldbelogicallydeployedonseparateserversbasedonthe
performancerequirementsoftheapplicationandpackagethecodeintomodulessothattherewillbe
onemoduleperserverintheinfrastructure.
Answer:A
QUESTIONNO:10
AnintegrationdevelopercreatesanewversionofacurrentmoduleandneedstoupdatetheSCA
moduleversionintheWebSphereIntegrationDevelopertestenvironment.Whichofthefollowingtask
willtheintegrationdeveloperneedtoperforminordertocreatenewinstancesofthelatestversionof
theprocess?
A.RunserviceDeployagainsttheexported,versionedmodulefiletogenerateaninstallableEARfile.
B.ExporttheversionedmoduleasanEARfileandmanuallydeployitusingtheadministrativeconsole.
C.AddtheversionedmoduletoUTEviaAdd/Removeprojectsoptionandconfirmthatthestatusofthe
projectchangestopublished.
http://certkill.com